home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Multimedia Plus
/
Multimedia Plus with ClearVue Version 10-94 (Knowledge Media Inc.).ISO
/
dos
/
anim
/
flilib
/
flisrc
/
jdelete.c
< prev
next >
Wrap
C/C++ Source or Header
|
1989-11-16
|
310b
|
18 lines
#include "jlib.h"
/* Delete a file if possible. Don't complain if it's not there. */
Boolean dos_delete (title)
char *title;
{
union i86_regs reg;
reg.b.ah = 0x41;
reg.w.dx = i86_ptr_offset(title);
reg.w.ds = i86_ptr_seg(title);
if (i86_sysint(0x21,®,®)&1)
return(0);
return(1);
}